home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Myself.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  548 b   |  36 lines

  1. global gMasterData, gSection, gNotesList
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #intro:
  7.       leaveThisMovie()
  8.   end case
  9. end
  10.  
  11. on goBack
  12.   stopSound2()
  13.   case gSection of
  14.   end case
  15. end
  16.  
  17. on leaveThisMovie
  18.   set the means of gNotesList to the text of member "note Field 1"
  19.   set the CD of gNotesList to the text of member "note Field 8"
  20.   if iAmActivated(gMasterData) then
  21.     getPrintData()
  22.   end if
  23.   stopSound2()
  24.   cursor(4)
  25.   go(1, "Menu1")
  26. end
  27.  
  28. on notePadButton
  29.   DoNotepad()
  30. end
  31.  
  32. on continueNext
  33.   stopSound2()
  34.   go(the frame + 1)
  35. end
  36.